net/http.http2serverConn.streams (field)

12 uses

	net/http (current package)
		h2_bundle.go#L4490: 		streams:                     make(map[uint32]*http2stream),
		h2_bundle.go#L4671: 	streams                     map[uint32]*http2stream
		h2_bundle.go#L4761: 	if st, ok := sc.streams[streamID]; ok {
		h2_bundle.go#L4947: 	for _, st := range sc.streams {
		h2_bundle.go#L5452: 			if st, ok := sc.streams[v.StreamID]; ok {
		h2_bundle.go#L5573: 	if st, ok := sc.streams[se.StreamID]; ok {
		h2_bundle.go#L5783: 	delete(sc.streams, st.id)
		h2_bundle.go#L5784: 	if len(sc.streams) == 0 {
		h2_bundle.go#L5890: 	for _, st := range sc.streams {
		h2_bundle.go#L6082: 	if st := sc.streams[f.StreamID]; st != nil {
		h2_bundle.go#L6273: 	sc.streams[id] = st
		h2_bundle.go#L6485: 		if sc.streams[u.streamID] == nil {